W1. Linear System Consistency

Author

Salman Ahmadi-Asl

Published

January 29, 2026

1. Theory

1.1 Introduction: What Are We Studying?

In this module, we study how to systematically solve systems of linear equations and understand when solutions exist, are unique, or come in infinite families. You’ve likely solved small systems before (like or ), but what about larger systems? What if we have more equations than variables, or more variables than equations? What if some equations are redundant?

Main questions we’ll answer:

  • Does a solution exist? (Is the system consistent?)
  • If yes, is it unique? (Or are there infinitely many solutions?)
  • How do we find all solutions efficiently? (Using systematic elimination methods)

The key tool: We’ll use row operations to transform systems into simpler forms (REF and RREF) that make solutions easy to read off. The rank of the coefficient matrix will tell us everything about the solution structure.

1.2 Linear Systems of Equations

A linear system of equations is a collection of linear equations involving unknown variables. In general form:

This can be written compactly in matrix form as , where:

  • is the coefficient matrix containing only the coefficients of the variables
  • is the column vector of unknowns
  • is the column vector of constants on the right-hand side

The augmented matrix appends the constants vector as an extra column to :

The augmented matrix is the primary object we manipulate when solving linear systems via elimination.

1.3 Consistency and Inconsistency

A system is called consistent if it has at least one solution. Geometrically, this means the lines, planes, or hyperplanes represented by the equations intersect at one or more common points.

To understand this better, think about what it means to solve in terms of columns. If we write as where each is a column, then means:

This asks: “Can we express as a combination of the columns of ?” If yes, the system is consistent. The set of all possible combinations of the columns of is called the column space of , denoted . So the system is consistent if and only if .

A system is inconsistent if it has no solution. Geometrically, the hyperplanes do not all share a common intersection point. For example, parallel lines in 2D never intersect:

These represent two parallel lines with no common point, so the system is inconsistent.

1.4 Rank of a Matrix

The rank of a matrix , denoted , is the maximum number of linearly independent rows (or equivalently, columns) in .

What does “linearly independent” mean? A set of vectors is linearly independent if no vector in the set can be written as a combination of the others. For example, the rows and are dependent because the second is just times the first. But and are independent — neither is a multiple of the other.

How to compute rank: Reduce to row echelon form and count the number of pivot positions (non-zero leading entries in each row). Each pivot corresponds to one independent equation, so the number of pivots equals the rank.

Why does rank matter? The rank tells us:

  • How many “truly different” equations we have (some equations might be redundant)
  • The dimension of the solution space
  • Whether the system is consistent (by comparing with )

Key properties of rank:

  • (can’t have more independent rows than total rows, or more independent columns than total columns)
  • (rank measures the dimension of both the column and row spaces)
  • Row operations do not change the rank (they preserve the essential structure of the system)
1.5 The Consistency Theorem (Rouché–Capelli Theorem)

This is the central theorem for determining whether a linear system has solutions.

Theorem 1 (Consistency of Linear Systems). A system is consistent if and only if:

Why does this work? If is already in the column space of , then appending as a new column does not add any new “direction” — the rank stays the same. If is not in , then it introduces a new independent direction, so .

Proof sketch. Write as columns. The system is consistent iff for some scalars, i.e., . If , adding as a column does not increase the column space dimension, so . Conversely, if the ranks are equal, then , which forces .

Alternative viewpoint (via row operations). If , then in the row echelon form of , there will be a row of the form with , corresponding to the impossible equation .

1.6 Classification of Solutions

Theorem 2 (Solution Type Determination). For the linear system with variables, let and . Then:

  1. No solution (inconsistent):
  2. Unique solution:
  3. Infinitely many solutions:

Why does this work? The proof relies on the Rank-Nullity Theorem:

This fundamental theorem says: the number of pivot columns plus the number of free variables equals the total number of variables. Rearranging: .

Now we can understand the three cases:

  • Case 1: If , adding increased the rank, meaning is not in the column space. No solution exists.
  • Case 2: If , then , so the null space contains only . There are no free variables, no “wiggle room” — the solution (if it exists) is unique.
  • Case 3: If , then . There are free variables, giving infinitely many solutions in the form where ranges over the -dimensional null space.
1.6.1 Special Cases

Homogeneous systems () are always consistent because is always a solution. They have:

  • Only the trivial solution if
  • Infinitely many nontrivial solutions if

Square systems ():

  • Unique solution for every iff (equivalently, )
  • If , the system is either inconsistent or has infinitely many solutions
1.7 Geometric Interpretation

Each linear equation (with not all ) represents a hyperplane in — a flat subspace of dimension .

What is dimension? Intuitively, the dimension of a space is the number of independent directions you can move in it. A line has dimension 1 (one direction: forward/backward). A plane has dimension 2 (two independent directions: e.g., north/south and east/west). Our 3D world has dimension 3. A hyperplane in has dimension — it’s one dimension “less” than the full space. For example, in , a hyperplane is an ordinary plane (dimension 2).

The solution set of a linear system is the intersection of the corresponding hyperplanes:

  • Unique solution: All hyperplanes meet at exactly one point
  • Infinitely many solutions: Hyperplanes intersect along a line, plane, or higher-dimensional flat
  • No solution: The hyperplanes have no common intersection (e.g., parallel planes)
1.8 Row Echelon Form (REF)

A matrix is in Row Echelon Form (also called stair-step form) if:

  1. All zero rows are at the bottom
  2. Each leading entry (pivot) is in a column to the right of the pivot in the row above
  3. All entries below a pivot are zero

Example:

The pivots are , , and (in columns 1, 2, and 4). Note that pivots do not need to be in REF.

Pivot columns vs. free columns: Columns containing pivots correspond to basic variables (also called pivot variables) — these are the variables we solve for in terms of the others. Columns without pivots correspond to free variables — these can take any value and act as parameters in the solution. In the example above, if this were the augmented matrix of a system with variables , then would be basic variables (determined by the system) and would be a free variable (a parameter).

1.9 Reduced Row Echelon Form (RREF)

A matrix is in Reduced Row Echelon Form (also called canonical form) if:

  1. It is in REF
  2. Each pivot is exactly
  3. Each pivot is the only nonzero entry in its column (all entries above and below are zero)

Example:

The key difference from REF: in RREF, you can read off variable values (or express them in terms of free variables) directly, without back substitution.

1.10 Solving Linear Systems: Step-by-Step Methodology

The standard procedure for solving :

  1. Write the augmented matrix
  2. Use Gaussian elimination (row operations) to transform it to REF or RREF
  3. Identify pivot columns (basic variables) and free columns (free variables)
  4. Check consistency: if a row with appears, the system is inconsistent
  5. If consistent, find a particular solution by setting all free variables to
  6. Find the homogeneous solution by solving
  7. Write the complete solution:

The three elementary row operations are:

  • Swap two rows: (changing the order of equations doesn’t change the solution)
  • Multiply a row by a nonzero scalar: (multiplying both sides of an equation by a nonzero number gives an equivalent equation)
  • Add a multiple of one row to another: (if satisfies both equations, it satisfies their sum)

Why do row operations preserve solutions? Each row operation corresponds to a valid algebraic manipulation that doesn’t change the solution set. For example, if you have equations and , and satisfies both, then also satisfies . Conversely, if satisfies and , we can recover by computing , so satisfies as well. Thus the solution sets before and after the operation are identical.

1.11 Complete Solution Structure

For a consistent system with and variables:

where:

  • is any particular solution to (found by setting free variables to )
  • is the general solution to the homogeneous system , expressed as a linear combination of basis vectors of the null space

Understanding this structure intuitively: Think of as “one way to get to the target ,” and as “all the ways to stay at zero.” Since , adding any homogeneous solution to a particular solution gives another solution.

What is the null space? The null space (or kernel) of , denoted , is the set of all vectors that maps to zero:

The null space is a vector subspace of , meaning it’s closed under addition and scalar multiplication. Its dimension equals , which is the number of free variables (parameters) in the solution. Geometrically, if (full rank), the null space contains only the zero vector, so there’s a unique solution. If , the null space contains infinitely many vectors, giving infinitely many solutions.

1.12 Underdetermined and Overdetermined Systems

An underdetermined system has more variables than equations (). If consistent, it always has infinitely many solutions because , so there is at least one free variable.

An overdetermined system has more equations than variables (). It may still be consistent, but “generically” (for a random ) it will be inconsistent because the extra equations impose additional constraints.

1.13 Systems with Parameters

When a system involves a parameter (like , , , ), you perform row reduction as usual, and then analyze the resulting matrix for different values of the parameter. The key is to identify which parameter values cause:

  • A pivot to vanish (changing the rank)
  • An inconsistency row to appear

Different parameter values may lead to different solution types (unique, infinite, or none).


2. Definitions

  • Linear system of equations: A collection of linear equations in unknowns of the form , where each equation is a linear combination of the variables equal to a constant.
  • Coefficient matrix: The matrix containing only the coefficients of the variables in a linear system.
  • Augmented matrix: The matrix formed by appending the constants vector as an additional column to the coefficient matrix .
  • Consistent system: A linear system that has at least one solution; equivalently, .
  • Inconsistent system: A linear system that has no solution; equivalently, .
  • Rank: The maximum number of linearly independent rows (or columns) of a matrix; equals the number of pivots in row echelon form.
  • Pivot: The first nonzero entry in a row of a matrix in row echelon form; also called the leading entry.
  • Pivot column: A column of the coefficient matrix that contains a pivot; corresponds to a basic (determined) variable.
  • Free variable: A variable whose corresponding column is not a pivot column; it can take any real value as a parameter.
  • Row Echelon Form (REF): A matrix form where all zero rows are at the bottom, each pivot is to the right of the pivot above, and all entries below each pivot are zero.
  • Reduced Row Echelon Form (RREF): A matrix in REF where each pivot is and is the only nonzero entry in its column.
  • Particular solution (): Any single solution to , typically found by setting all free variables to zero.
  • Homogeneous solution (): The general solution to ; it forms the null space of .
  • Null space (kernel): The set of all vectors such that ; a vector subspace of with dimension .
  • Column space: The set of all possible linear combinations of the columns of ; the system is consistent iff is in the column space.
  • Hyperplane: The solution set of a single linear equation in ; a flat subspace of dimension .
  • Underdetermined system: A system with more variables than equations (); if consistent, always has infinitely many solutions.
  • Back substitution: The process of solving for variables starting from the last equation in a triangular (REF) system and working upward.

3. Formulas

  • Matrix form of a linear system: , where , ,
  • Consistency condition (Rouché–Capelli): The system is consistent iff
  • Complete solution structure: , where is a particular solution and is the general homogeneous solution
  • Rank-Nullity Theorem: , i.e., the number of free variables equals minus the number of pivots
  • Solution classification:
    • No solution:
    • Unique solution:
    • Infinitely many solutions:
  • Null space dimension: , where
  • Rank bound:
  • Square system unique solution condition: has a unique solution for every iff

4. Practice

4.1. Solvability of a System of Three Lines (Lab 1, Task 1)

Consider the following system of equations:

Part (a): Sketch these three lines and decide if the system is solvable. Part (b): What happens when all the elements on the right-hand side are zero? Part (c): Is there any choice of numbers on the right-hand side that allows the three lines to intersect at the same point?

Click to see the solution

Key Concept: A system of three linear equations in two variables represents three lines in the plane. They can intersect at a point (unique solution), have no common intersection (inconsistent), or all pass through infinitely many points (infinitely many solutions).

(a) Sketch and solvability: The three lines can be plotted on a coordinate plane. The first line and the second line intersect at a point. However, the third line may not pass through the same point, leading to the three lines forming a triangle with no common intersection point. Therefore, this system is inconsistent (has no solution).

(b) When right-hand side is zero: 1. If we set all right-hand side values to zero: , , 2. All three lines pass through the origin 3. Therefore, the system has a solution at the origin.

(c) Condition for three lines to intersect at one point: For the three lines to intersect at a single common point, we need the system to be consistent. The right-hand side values must be compatible with the coefficient matrix. For example, if we modify the third equation to (instead of ), then solving , , and gives .

Answer: (a) The system is inconsistent (no common point); (b) All lines pass through the origin ; (c) Yes, by adjusting the right-hand side, e.g., changing the third equation to .

4.2. Identifying Inconsistency via Rank (Lab 1, Task 2)

Consider the following system of equations:

Part (a): Explain why this system is singular by providing a combination of three equations that adds up to . Part (b): What value should replace on the right-hand side of the third equation to allow the system to have a solution? Part (c): What is one of the solutions?

Click to see the solution

Key Concept: When row operations reveal a contradiction like , the system is inconsistent. Adjusting the right-hand side appropriately can make the system consistent.

(a) Finding the inconsistency: 1. Start with the augmented matrix: 2. Perform row operation : 3. Perform row operation on the result: 4. The third row represents , which is a contradiction, making the system inconsistent.

(b) Correct right-hand side: If we change the third equation’s right-hand side from to (making it ), the augmented matrix becomes: After row reduction, the third row becomes all zeros, and the system becomes consistent.

(c) Finding a solution when right-hand side is corrected: With the corrected system, we have:

  • , so
  • , so , giving

Setting as a free variable:

Answer: (a) Row operations reveal , an inconsistency; (b) The right-hand side of the third equation should be ; (c) One solution is .

4.3. Linear Combinations and Back Substitution (Lab 1, Task 3)

What combination of , , , and produces ? What equations for , , , and are you solving?

Click to see the solution

Key Concept: Finding a linear combination of column vectors is equivalent to solving a linear system where the column vectors form the coefficient matrix.

  1. Set up the system: We seek such that:
  2. Write as a linear system:
  3. Express in matrix form:
  4. Back substitution:
    • From equation 4:
    • From equation 3:
    • From equation 2:
    • From equation 1:

Answer:

4.4. Gaussian Elimination to Upper Triangular Form (Lab 1, Task 4)

Reduce the following system to an upper triangular form by row operations:

Circle the pivots. Solve it for , , and by back-substitution.

Click to see the solution

Key Concept: Gaussian elimination transforms the system into upper triangular form (REF) by making entries below pivots zero, enabling efficient back substitution.

  1. Write augmented matrix:

  2. Perform row operation :

    First pivot: (in position )

  3. Perform row operation :

    Second pivot: (in position ) Third pivot: (in position )

  4. Back substitution:

    • From equation 3:
    • From equation 2:
    • From equation 1:

Answer:

4.5. Parameter Analysis: Row Exchange and Missing Pivot (Lab 1, Task 5)

For the system:

Part (a): Which number leads to a row exchange? Part (b): Which leads to a missing pivot (singular case)? Part (c): In the singular case, find a nonzero solution for , , and .

Click to see the solution

Key Concept: Parameters that make a pivot vanish cause the matrix to become singular, potentially requiring row exchanges or indicating infinitely many solutions in the homogeneous case.

(a) Row exchange case when : 1. Start with augmented matrix: 2. After : 3. Row 2 has a zero in column 2, so we exchange and :

Answer for (a):

(b) Missing pivot case when : 1. Start with augmented matrix: 2. After : 3. After :

The third column has no pivot, so is a free variable.

Answer for (b):

(c) Nonzero solution when : 1. From the reduced form: (equivalently, ) 2. From the first equation: 3. Setting (free variable): ,

Answer: or any nonzero scalar multiple, e.g.,

4.6. Dependent Rows and Solution Structure (Lab 1, Task 6)

Construct a 3 by 3 example that has 9 different coefficients on the left-hand side, but rows 2 and 3 become zero in the elimination.

Part (a): How many solutions to your system with ? Part (b): How many with ?

Click to see the solution

Key Concept: When rows become linearly dependent (proportional), the rank of the augmented matrix determines consistency and the number of solutions.

(a) Construction and analysis for :

  1. Consider a system with proportional rows:

    The second and third rows are proportional to the first row.

  2. Augmented matrix for :

  3. After row operations and :

  4. Both rows 2 and 3 represent contradictions ( and ), so the system is inconsistent.

Answer for (a): No solutions (the system is inconsistent)

(b) For :

  1. Augmented matrix:
  2. After row operations:
  3. Only one independent equation remains: . There are free variables.
  4. From the equation: (assuming )
  5. General solution: for any

Answer for (b): Infinitely many solutions (the system has a 2-dimensional solution space)

4.7. Solving Two 3×3 Systems (Lab 1, Task 7)

Use elimination to solve these two systems:

System 1:

System 2:

Click to see the solution

Key Concept: These two systems share the same coefficient matrix but differ only in the right-hand side. Both can be solved using the same sequence of row operations.

System 1 Solution:

  1. Write augmented matrix:
  2. Row operations and :
  3. Row operation :
  4. Back substitution:

Answer for System 1:

System 2 Solution:

  1. Write augmented matrix:
  2. Apply the same row operations as System 1 (the coefficient matrix is identical):
  3. Back substitution:

Answer for System 2:

4.8. System with Parameter: Solution Type Classification (Assignment 1, Task 1)

Determine all values of for which the system has: 1. A unique solution 2. No solution 3. Infinitely many solutions

Click to see the solution

Key Concept: For systems with parameters, the number of solutions depends on how the parameter affects the rank of the coefficient matrix and augmented matrix.

  1. Write the augmented matrix:

  2. Observe the first two equations: Row 2 is exactly Row 1, so after :

  3. Analyze Row 3: Perform :

    Simplifying Row 3:

  4. Case analysis:

    Case 1: Only one independent equation; . Infinitely many solutions (with 2 free variables).

    Case 2: Row 3 becomes:

    This simplifies to , or .

    Since , we have , which gives one more independent equation.

    , and . Infinitely many solutions (with 1 free variable) since the second row is always zero and the right-hand sides are consistent.

Starting system:

Notice: Row 2 = Row 1, so the first two equations are dependent.

After and analyzing Row 3:

  • :
  • Simplifies to: , i.e.,

If : The third row becomes , giving infinitely many solutions.

If : We can divide by to get , giving a constraint but still infinitely many solutions (one free variable).

The system always has solutions because the right-hand sides are compatible.

Answer:

  • Unique solution: Never (the first two equations are dependent)
  • No solution: Never (the system is always consistent)
  • Infinitely many solutions: For all values of (the system always has rank 2 and infinitely many solutions with 1 free variable)
4.9. Underdetermined System: Multiple Free Variables (Assignment 1, Task 2)

Solve the system:

Click to see the solution

Key Concept: This is an underdetermined system (3 equations, 5 variables). The rows are all proportional, leading to only one independent constraint and four free variables.

  1. Write the augmented matrix:

  2. Observe proportionality:

    • Row 2 = Row 1
    • Row 3 = Row 1

    So all three rows represent the same constraint.

  3. After row reduction:

    Only one independent equation remains:

  4. Identify pivot and free variables:

    • Pivot column: 1 (variable )
    • Free columns: 2, 3, 4, 5 (variables )
    • Number of free variables:
  5. Express general solution: Let , , , (free parameters).

    From the constraint:

Answer: The general solution is:

Or equivalently: where are arbitrary real numbers.

Particular solution (setting all free variables to 0):

4.10. 4×4 Overdetermined System (Assignment 1, Task 3)

Solve the system:

Click to see the solution

Key Concept: This is an overdetermined system (4 equations, 4 variables). Row reduction will show whether it is consistent or inconsistent.

  1. Write the augmented matrix:
  2. Row operations: Subtract Row 1 from Rows 2, 3, and 4:
  3. Continue elimination: and :
  4. Final step: :
  5. Back substitution:
    • From Row 4:
    • From Row 3:
    • From Row 2:
    • From Row 1:

Answer:

4.11. Rank-1 Matrix System (Assignment 1, Task 4)

Find the complete solution to:

(Note: The matrix has rank 1)

Click to see the solution

Key Concept: When a matrix has rank 1, all rows are multiples of one row. The entire system reduces to a single constraint equation with multiple free variables.

  1. Observe the pattern:

    • Row 2 = Row 1
    • Row 3 = Row 1
    • Row 4 = Row 1

    Check the right-hand side: . The system is consistent!

  2. Augmented matrix:

  3. After row reduction:

  4. Single constraint:

  5. Rank-Nullity Theorem: , so

    The null space has dimension 3, so the complete solution has 3 free parameters.

  6. Particular solution: Set

    Particular solution:

  7. Homogeneous solution (Null space): Solve

    Let . Basis vector: Let . Basis vector: Let . Basis vector:

Answer: Complete solution:

4.12. Underdetermined System with 3 Equations and 4 Variables (Assignment 1, Task 5)

Solve the underdetermined system:

where equations and variables.

Click to see the solution

Key Concept: An underdetermined system has more variables than (independent) equations. The solutions form a higher-dimensional space parametrized by free variables.

  1. Write the augmented matrix:

  2. Row operations: and :

  3. Rearrange (move Row 3 up):

  4. RREF-like form (divide Row 2 by -1):

  5. Identify pivot and free variables:

    • Pivot columns: 1, 2 (variables )
    • Free columns: 3, 4 (variables )
    • Rank: ; Free variables:
  6. Back substitution: Let and (free parameters).

    From Row 2:

    From Row 1:

Answer: General solution:

Or in vector form:

4.13. Parametric System: Solution Type Depends on Parameters (Assignment 1, Task 6)

For what values of does the system have: 1. No solution? 2. A unique solution? 3. Infinitely many solutions?

Click to see the solution

Key Concept: For parametric systems, analyze the coefficient matrix and augmented matrix separately. The relationship between their ranks determines consistency and solution type.

  1. Write the augmented matrix:

  2. Row operations: and :

  3. Continue: :

    Simplify Row 3 right-hand side:

  4. Final reduced form:

  5. Case analysis:

    Case 1: No solution This occurs when

    Since the coefficient matrix has rank at most 2 (third row is all zeros in the part), the augmented matrix will have rank 3 (meaning inconsistent) only if Row 3’s right-hand side is nonzero.

    Condition: , i.e.,

    Answer for no solution:

    Case 2: Unique solution This requires

    But the coefficient matrix has only 2 independent rows (the third row of is dependent on the first two). So .

    Answer for unique solution: Never (impossible for any values of )

    Case 3: Infinitely many solutions This requires

    This happens when and

    Condition:

    Answer for infinitely many solutions:

Summary:

  • No solution:
  • Unique solution: Never possible
  • Infinitely many solutions:
4.14. Solving a System Using REF (Tutorial 1, Example 1)

Solve using Row Echelon Form (REF):

Click to see the solution

Key Concept: REF is an intermediate form (pivots don’t need to be 1) that enables efficient back substitution.

  1. Augmented matrix:
  2. Row operations: and :
  3. Continue: :
  4. Back substitution:
    • From Row 3:
    • From Row 2:
    • From Row 1:

Answer:

4.15. Solving a System Using RREF (Tutorial 1, Example 2)

Solve using Reduced Row Echelon Form (RREF):

Click to see the solution

Key Concept: RREF (where each pivot is 1 and is the only nonzero in its column) allows direct reading of solutions without back substitution.

  1. Augmented matrix:
  2. Row operations: and :
  3. Simplify Row 2 (divide by -5) and Row 3:
  4. Continue: :
  5. Simplify Row 3 (divide by -5): where .

From the tutorial (given RREF):

Direct reading from RREF:

Answer:

4.16. Underdetermined System: 2 Equations, 4 Variables (Tutorial 1, Example 3)

Solve:

Click to see the solution

Key Concept: With 2 equations and 4 variables, there are free variables (assuming full rank of 2).

  1. Augmented matrix:

  2. Row operation: :

  3. RREF:

    (After )

  4. From RREF:

    • , so
  5. Free variables: ,

Answer:

4.17. Underdetermined System: 3 Equations, 5 Variables (Tutorial 1, Example 4)

Solve:

Click to see the solution

Key Concept: With 3 equations and 5 variables, there are at most 3 independent equations, leaving at least 2 free variables.

  1. Augmented matrix:
  2. Observe: Row 2 = Row 1, so gives all zeros.
  3. After row operations: :
  4. Rearrange to get RREF:
  5. From RREF:
    • Free variables: , ,

Answer:

4.18. Inconsistent System Detection (Tutorial 1, Example 5)

Solve (or determine if inconsistent):

Click to see the solution

Key Concept: When rows are proportional but the right-hand side is not proportional in the same way, the system is inconsistent.

  1. Augmented matrix:
  2. Row operations: and :
  3. Inconsistency detected: Row 2 represents , which is impossible.

Answer: The system is inconsistent (no solution).

4.19. Solve Using REF (Tutorial 1, Example 6)

Solve using REF:

Click to see the solution
  1. Augmented matrix:
  2. Swap R1 and R2 for a leading 1:
  3. Row operations: and :
  4. Continue: Divide R2 by -1 (or keep as is) and perform :
  5. Back substitution:

Answer: or approximately

4.20. Intersection of Three Planes (Tutorial 1, Task 1)

Describe the intersection of the three planes (in four-dimensional space):

Part (a): Is it a line or a point or an empty set? Part (b): What is the intersection if the fourth plane is included? Part (c): Find a fourth equation that leaves us with no solution.

Click to see the solution

Key Concept: In higher dimensions, the intersection of hyperplanes forms lower-dimensional subspaces. The dimension of the solution space equals where is the rank.

(a) Intersection of three planes:

  1. From the equations:
        • (1):
        • (2):
    • From (3):
  2. We have determined and , while and satisfy .
  3. Setting as a free variable: .
  4. General solution: for

This represents a line in 4D space (parametrized by one variable).

(b) Adding the fourth plane :

  1. From part (a), we had .
  2. If :
  3. Thus .
  4. The unique solution is:

This is a point in 4D space.

(c) Fourth equation that leads to no solution:

  1. From part (a), the solution set is for .
  2. Any equation that contradicts these values for all will make the system inconsistent.
  3. For example, (different from the actual sum, which is always ).

Or simply: (contradicts ), or (contradicts ).

Answer:

  1. The intersection is a line in 4D.

  2. With the fourth plane, the intersection is a point: .

  3. A fourth equation causing no solution: (or , or , etc.)

4.21. Find Another Solution Using Column Picture (Tutorial 1, Task 2)

When , find a solution to the vector equation different from :

Click to see the solution

Key Concept: If a system is singular (dependent rows), the solution is not unique. Any particular solution can be combined with homogeneous solutions to find other solutions.

  1. Convert to linear system:

  2. Check dependency: (1) + (2) = (3)? $(u + v + w) + (2u + 3w) = 3u + v + 4w = $ RHS:

    So the three equations are dependent; the system is singular.

  3. Find the null space (general homogeneous solution): Since the rows are dependent, we can express one as a combination of others. Notice: , which means is a homogeneous solution.

  4. General solution: Particular solution: Homogeneous solution:

    General solution: for

  5. Different solution: Set :

    Or set : .

Answer: General solution: for any . Another particular solution: .

4.22. Linear Dependence and Null Space (Tutorial 1, Task 3)

Show that the three column vectors lie in the same plane by expressing the third column as a combination of the first two. What are all solutions to:

Click to see the solution

Key Concept: Linear dependence means one vector can be written as a linear combination of the others. The null space consists of all solutions to .

  1. Express the third column as a combination of the first two: We seek such that:

  2. Set up equations:

  3. Solve:

    • From equation 3:
    • From equation 1:
    • Verify with equation 2:
  4. Linear dependence relation:

    This means is in the null space.

  5. All solutions to the homogeneous system: Since the three vectors are linearly dependent (lie in a plane), the null space is 1-dimensional.

    Basis for null space:

    General solution: for

Answer:

  1. The third column can be expressed as:

This shows the three columns lie in a 2D plane (linearly dependent).

  1. All solutions: for , which includes (when ) and (when ).
4.23. Collinearity Condition (Tutorial 1, Task 4)

Under what condition on do the points , , lie on a straight line?

Click to see the solution

Key Concept: Three points are collinear if they satisfy the same linear equation .

  1. Set up the line equation: For a line , the three points must satisfy:

    • Point 1:
    • Point 2:
    • Point 3:
  2. Express in terms of :

    • (from Point 1)
    • (from Point 2: )
    • From Point 3:
  3. Collinearity condition:

    Rearranging:

    Or:

Answer: The three points are collinear if and only if: or equivalently,

4.24. Intersection of Two Planes: Find Points on the Line (Tutorial 1, Task 5)

Find a point with on the intersection line of the planes and . Find the point with and a third point halfway between.

Click to see the solution

Key Concept: The intersection of two planes is a line (in 3D, assuming the planes are not parallel). We can find specific points by setting one coordinate and solving for the others.

(a) Point with :

  1. Substitute into both plane equations:
  2. Solve the system:
    • Adding:
    • From :
  3. Point with :

(b) Point with :

  1. Substitute into both plane equations:
  2. Solve:
    • Adding:
    • From :
  3. Point with :

(c) Midpoint:

The midpoint between and is:

Answer:

  • Point with :
  • Point with :
  • Midpoint:
4.25. Immediate Solution from Column Picture (Tutorial 1, Task 6)

In the vector equation below, the third column (multiplying ) is the same as the right side . What solution for does this immediately give?

Click to see the solution

Key Concept: If one of the column vectors equals the target vector , then we can immediately read off a solution: set the corresponding variable to 1 and all others to 0.

  1. Observe: The third column vector is:

    And the right-hand side is:

    They are identical!

  2. Immediate solution: If we set , , and , then:

Answer:

4.26. Elimination and Back Substitution with Missing Coefficient (Tutorial 1, Task 7)

Apply elimination (circle the pivots) and back-substitution to solve:

Click to see the solution
  1. Write augmented matrix:

  2. Row operations: and :

    Pivots: and

  3. Continue: :

    Third pivot:

  4. Back substitution:

    • From Row 3:
    • From Row 2:
    • From Row 1:

Answer:

4.27. Parameter Analysis: Row Exchange and Singularity (Tutorial 1, Task 8)

For the system with parameter :

Part (a): Which number forces a row exchange? Part (b): Which makes the system singular (no third pivot)?

Click to see the solution
  1. Augmented matrix:
  2. First elimination: :

(a) Row exchange occurs when:

The second pivot would be zero if , i.e., .

Answer for (a):

(b) Singularity (missing third pivot) occurs when:

We need so that after row reduction, Rows 2 and 3 become proportional:

The third row represents , so the system is inconsistent.

Answer for (b): (system becomes singular/inconsistent)

4.28. Constructing Systems with Row Exchanges (Tutorial 1, Task 9)

Part (a): Construct a 3×3 system that needs two row exchanges to reach triangular form and find a solution. Part (b): Construct a 3×3 system that needs a row exchange but breaks down later.

Click to see the solution

Key Concept: Systems requiring multiple row exchanges have zeros in critical pivot positions. Systems that break down are inconsistent.

(a) System requiring two row exchanges:

Example matrix:

  1. First exchange: :
  2. Second exchange: :
  3. Back substitution:

Answer for (a): Solution is

(b) System requiring row exchange but becoming inconsistent:

Example matrix:

  1. Apply: :

  2. Row exchange needed: :

  3. Continue: :

    The system is inconsistent ().

Answer for (b): The system breaks down to the inconsistency .